const github.com/klauspost/compress/flate.maxStoreBlockSize

16 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L48: 	maxStoreBlockSize   = 65535
		deflate.go#L684: 	if d.windowEnd > 0 && (d.windowEnd == maxStoreBlockSize || d.sync) {
		deflate.go#L792: 		d.window = make([]byte, maxStoreBlockSize)
		deflate.go#L806: 		d.window = make([]byte, maxStoreBlockSize)
		deflate.go#L818: 		d.fast = &fastEncL5Window{maxOffset: int32(-level), cur: maxStoreBlockSize}
		deflate.go#L819: 		d.window = make([]byte, maxStoreBlockSize)
		fast_encoder.go#L22: 		return &fastEncL1{fastGen: fastGen{cur: maxStoreBlockSize}}
		fast_encoder.go#L24: 		return &fastEncL2{fastGen: fastGen{cur: maxStoreBlockSize}}
		fast_encoder.go#L26: 		return &fastEncL3{fastGen: fastGen{cur: maxStoreBlockSize}}
		fast_encoder.go#L28: 		return &fastEncL4{fastGen: fastGen{cur: maxStoreBlockSize}}
		fast_encoder.go#L30: 		return &fastEncL5{fastGen: fastGen{cur: maxStoreBlockSize}}
		fast_encoder.go#L32: 		return &fastEncL6{fastGen: fastGen{cur: maxStoreBlockSize}}
		fast_encoder.go#L48: 	allocHistory = maxStoreBlockSize * 5                            // Size to preallocate for history.
		fast_encoder.go#L49: 	bufferReset  = (1 << 31) - allocHistory - maxStoreBlockSize - 1 // Reset the buffer offset when reaching this.
		huffman_bit_writer.go#L415: 	if len(in) <= maxStoreBlockSize {
		token.go#L136: 	tokens    [maxStoreBlockSize + 1]token